home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Animation
/
Animation Vol.1 (Profi ROM)(1994).iso
/
pool
/
updates
/
symantec
/
rtlinc.exe
/
ASSERT.H
< prev
next >
Wrap
C/C++ Source or Header
|
1993-05-25
|
501b
|
28 lines
/*_ assert.h Fri May 12 1989 Modified by: Walter Bright */
#if __cplusplus
extern "C" {
#endif
#undef assert
#ifdef NDEBUG
#define assert(ignore) ((void) 0)
#else
#define assert(e) ((void)((e) || (_assert(#e,__FILE__,__LINE__),1)))
extern void
#ifdef __STDC__
#elif __OS2__ && __INTSIZE == 4
__stdcall
#else
__cdecl
#endif
_assert(const char *,const char *,unsigned);
#pragma noreturn(_assert)
#endif
#if __cplusplus
}
#endif